linux學(xué)習(xí) -IP ifconfig命令查看網(wǎng)絡(luò)
發(fā)布時間:2024/11/26 14:43:57
在Linux中查詢IP地址,可以使用ip命令。以下是查詢IP地址的命令和示例
ip addr show
如果你只想快速查看所有接口的IPv4地址,可以使用以下命令:
ip -4 addr | grep inet
=================================
查看網(wǎng)絡(luò)接口信息
如果不帶任何參數(shù),ifconfig 會列出當(dāng)前激活的所有網(wǎng)絡(luò)接口及其狀態(tài)
ifconfig
配置 IP 地址和子網(wǎng)掩碼
要為指定的接口配置 IP 地址和子網(wǎng)掩碼,可以使用以下命令:
ifconfig eth0 192.168.1.100 netmask 255.255.255.0
該命令將 eth0 接口的 IP 地址設(shè)置為 192.168.1.100,子網(wǎng)掩碼設(shè)置為 255.255.255.0
=================================
啟用和禁用網(wǎng)絡(luò)接口
啟用接口
ifconfig eth0 up
禁用接口:
ifconfig eth0 down